home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d7 / faxctrl.arc / FTELIX.COM (.txt) < prev    next >
Encoding:
Graham's TXT2COM  |  1990-12-28  |  6.6 KB  |  90 lines

  1. ~0E
  2.                       ┌─────────────┐ ┌────────────┐┌─┐
  3.                       └┐           ┌┘ │    ┌──────┐└┘ │
  4.                        │           │  │    │      └───┘
  5.                        │           │  │    │          <tm>
  6.                        │           │  │    └─────────────┐
  7.                        │           │  └──────┐           │
  8.                        │           │         │           │
  9.                        │           │         │           │
  10.                        │           └─────────┘           │
  11.                        │  U n i q u e   S o f t w a r e  │
  12.                        └─────────────────────────────────┘                   ~0F
  13.                 FAXCTRL 1.32 - Copyright 1989 by Unique Software             ~0A
  14.                                 Supplemental File                            ~07
  15.                            "Using FAXCTRL with TELIX"                        ~02
  16.                   Unique Software   ::   Post Office Box 26613 
  17.                           Fort Worth, Texas 76126-0613 
  18.                CompuServe : 70130,330   ::   MCI-Mail : 252-8689
  19.                        American People Link : UNIQUESOFT                     ~07
  20.          ~87365~07day - ~8724~07hr FAX Support - 1-817-249-4284
  21. ~0A
  22.                           -Press [PG DN] for next page-                      ~03
  23. ~03
  24.                            "Using FAXCTRL with TELIX"
  25. ~02
  26.     TELIX,   Copyright  1986-88   by  Exis,   Inc.,   is  a  popular   shareware 
  27. communications program. Interfacing TELIX with FAXCTRL is fairly simple. 
  28.  
  29.     We  do not intend to give a tutorial on how to use,  setup,  or operate  the 
  30. HOST mode under Telix.  We believe that the author(s)  did that very well in the 
  31. instructions provided with Telix.  Therefore,  we will only demonstrate  how  to 
  32. interface FAXCTRL with Telix's HOST mode. 
  33.  
  34.     Included  in  FAXCTL.EXE  are two files related  to  Telix,   FHOST.SLT  and 
  35. FHOST.SLC.   If you've been using Telix for some time you already know that  the 
  36. .SLC  extension  is a compiled SALT file.  This HOST file is identical with  the 
  37. HOST.SLC  file provided with TELIX with two exceptions.  One the  commands  that 
  38. terminate  the  host  mode have been changed so a full exit is made to  the  DOS 
  39. level  and  back  to FAXCTRL.  The other is the addition of a timer  during  the 
  40. waiting for call loop. This host file provides for a little over a minute before 
  41. it will exit back to FAXCTRL. This is invaluable if FAXCTRL is triggered by a 
  42. false-one-ring signal.
  43. ~0A
  44.                           -Press [PG DN] for next page-
  45. ~03
  46.                                     The Steps
  47. ~02
  48.     (1)·Edit the file FAXHOST.BAT so that the line:
  49. : TELIX Q B Sfhost
  50.         is active. That is, remove the leading ": "
  51. TELIX Q B Sfhost
  52.  
  53.     (2)·Make sure that the script file provided,  FHOST.SLC,  is where Telix can 
  54. find it.  The best place is usually in the directory with your Telix HCONFIG.SLC 
  55. file is located. 
  56.  
  57.     (3)·Optionally,  you can adjust the amount of time that Telix waits for  you 
  58. to   call   back   before  aborting  back  to  FAXCTRL.   Look  for   the   line 
  59. "t·=·timer_start(700);"  in the FHOST.SLT file.  "700"  represents 70   seconds. 
  60. Adjust this value to whatever is appropriate for your needs. 
  61.  
  62.     (4)·Follow the FAXCTRL documentation to login to your host system. 
  63.  
  64.     (5)·When you're ready to logoff, use the [G]oodbye command. 
  65. ~0A
  66.                           -Press [PG DN] for next page-                      ~03
  67. ~07
  68. Briefly here are the changes needed to ANY Telix host script you might be using
  69. ~02
  70.    Add the following line after most any hangup procedure, exiting, or aborting 
  71. the HOST mode.                                                               ~03
  72.      Exittelix (0,1);
  73.  
  74. ~02
  75.    Add the folloing lines within your HOST script file:
  76. ~03
  77. int t;
  78. // initialize the timer variable to an integer //
  79. t = timer_start(700);
  80. // initialize the timer with 1/10 of seconds you want //
  81. if (time_up(t)) {
  82.    Exittelix (0);
  83.    }
  84. // insert this condition within the loop which waits for a caller //
  85. timer_free(t);
  86. // use this to free the variable t once someone has logged in //
  87.  
  88. ~0A
  89.                           >>> end of documentation <<<
  90.